home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 05 - 1989 / 05.02 Feb 89 / security code / PasLibIntf.Pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-01-30  |  1.2 KB  |  51 lines  |  [TEXT/MPS ]

  1. UNIT  PasLibIntf;
  2. {-------------------------------------------}
  3. (*
  4. ©1988 by Steve Seaquist. All rights reserved.
  5. Used by permission.  Use at your own risk.  
  6. No warranty is expressed or implied.  
  7.  
  8. This Macintosh virus-detecting program was 
  9. originally published and explained in the 
  10. February 1989 issue of MacTutor magazine.  
  11. Some aspects of its design are important to 
  12. security, and it uses some unusual 
  13. techniques, so please read the article.  
  14. *)
  15. {-------------------------------------------}
  16. INTERFACE
  17. TYPE
  18.   PascalPointer       = ^INTEGER;
  19.  
  20. PROCEDURE  PLFlush
  21.   (VAR fvar:TEXT);
  22. PROCEDURE  PLSetVBuf
  23.   (VAR fvar:TEXT; 
  24.   buffer:   UNIV PascalPointer;
  25.   style:    INTEGER;
  26.   bufsize:  INTEGER);
  27. PROCEDURE  Textbook
  28.   (pGrafPtr: GrafPtr);
  29.  
  30. {*******************************************}
  31. IMPLEMENTATION
  32. {-------------------------------------------}
  33. PROCEDURE  PLFlush
  34.   (VAR fvar:TEXT);
  35. BEGIN
  36. END;
  37. {-------------------------------------------}
  38. PROCEDURE PLSetVBuf
  39.   (VAR fvar:TEXT; 
  40.   buffer:   UNIV PascalPointer;
  41.   style:    INTEGER;
  42.   bufsize:  INTEGER);
  43. BEGIN
  44. END;
  45. {-------------------------------------------}
  46. PROCEDURE  Textbook
  47.   (pGrafPtr: GrafPtr);
  48. BEGIN
  49. END;
  50. {*******************************************}
  51. END.